'Declaration <DescriptionAttribute("The ratio of distance between two cell rows to cell height.")> <DefaultValueAttribute(0)> Public Property DistanceBetweenRows As Single
[Description("The ratio of distance between two cell rows to cell height.")] [DefaultValue(0)] public float DistanceBetweenRows { get; set; }
[Description("The ratio of distance between two cell rows to cell height.")] [DefaultValue(0)] public: __property float get_DistanceBetweenRows(); public: __property void set_DistanceBetweenRows(
float value
);
[Description("The ratio of distance between two cell rows to cell height.")] [DefaultValue(0)] public:
property float DistanceBetweenRows { float get(); void set(float value); }
Property Value
Valid values are 0 and any positive value:
Default value is 0 (i.e., no distance between rows of cells).
- 0 - there is no distance between cell rows
- from 0 to 1 - distance between cell rows is less than cell height
- 1 - distance between cell rows is equal to cell height
- greater than 1 - distance between cell rows is greater than cell height
Default value is 0 (i.e., no distance between rows of cells).